home *** CD-ROM | disk | FTP | other *** search
- #ifndef CLIB_PCIEXPANSION_PROTOS_H
- #define CLIB_PCIEXPANSION_PROTOS_H
-
- /*
- ** $VER: pciexpansion_protos.h 1.0 (30.12.97)
- ** Includes Release 1.0
- **
- ** C prototypes. For use with 32 bit integers only.
- **
- ** (C) Copyright 1997-1998 MicroniK
- ** All Rights Reserved
- */
-
- #include <utility/tagitem.h>
- #include <libraries/pciexpansion.h>
-
- struct PCIConfDev * FindPCIDev(struct PCIConfDev * start,
- struct TagItem * selection);
-
- struct PCIConfDev * AllocPCIDev(void);
- void FreePCIDev(struct PCIConfDev * dev);
-
- void AddPCIDev(struct PCIConfDev * dev);
- void RemPCIDev(struct PCIConfDev * dev);
-
- ULONG GetPCIReg(struct PCIConfDev * dev, UBYTE regoff);
- ULONG PutPCIReg(struct PCIConfDev * dev, UBYTE regoff, ULONG value);
-
- #endif /* CLIB_PCIEXPANSION_PROTOS_H */
-
-